home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Meeting Pearls 1
/
Meeting Pearls Vol 1 (1994).iso
/
installed_progs
/
linux
/
tools
/
amiga
/
gzip-1.1.2.lha
/
gzip-1.1.2
/
primos
/
include
/
fcntl.h
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
C/C++ Source or Header
|
1993-05-26
|
329 b
|
23 lines
/*
** fcntl.h
**
** Emulation of the Unix fcntl.h header file for PRIMOS
**
** Author: Peter Eriksson <pen@lysator.liu.se>
*/
#ifndef __FCNTL_H__
#define __FCNTL_H__
#define O_RDONLY 0
#define O_WRONLY 1
#define O_RDWR 2
#define O_BINARY 0
#define O_EXCL 0
#define O_NDELAY 0
#define O_CREAT 0
#define O_TRUNC 0
#endif